home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / htsparse.h < prev    next >
C/C++ Source or Header  |  2005-06-05  |  5KB  |  171 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsparse.h parser                                      */
  34. /*       html/javascript/css parser                             */
  35. /*       and other parser routines                              */
  36. /* Author: Xavier Roche                                         */
  37. /* ------------------------------------------------------------ */
  38.  
  39.  
  40. typedef struct htsmoduleStructExtended {
  41.   /* Main object */
  42.   htsblk* r_;
  43.  
  44.   /* Error handling */
  45.   int* error_;
  46.   int* exit_xh_;
  47.   int* store_errpage_;
  48.  
  49.   /* Structural */
  50.   int* filptr_;
  51.   char*** filters_;
  52.   robots_wizard* robots_;
  53.   hash_struct* hash_;
  54.   int* lien_max_;
  55.  
  56.   /* Base & codebase */
  57.   char* base;
  58.   char* codebase;
  59.  
  60.   /* Index */
  61.   int* makeindex_done_;
  62.   FILE** makeindex_fp_;
  63.   int* makeindex_links_;
  64.   char* makeindex_firstlink_;
  65.  
  66.   /* Html templates */
  67.   char *template_header_;
  68.   char *template_body_;
  69.   char *template_footer_;
  70.  
  71.   /* Specific to downloads */
  72.   LLint* stat_fragment_;
  73.   TStamp makestat_time;
  74.   FILE* makestat_fp;
  75.   LLint* makestat_total_;
  76.   int* makestat_lnk_;
  77.   FILE* maketrack_fp;
  78.  
  79.   /* Function-dependant */
  80.   char* loc_;
  81.   TStamp* last_info_shell_;
  82.   int* info_shell_;
  83.  
  84. } htsmoduleStructExtended;
  85.  
  86.  
  87. /* Library internal definictions */
  88. #ifdef HTS_INTERNAL_BYTECODE
  89.  
  90. /*
  91.   Main parser, attempt to scan links inside the html/css/js file
  92.   Parameters: The public module structure, and the private module variables
  93. */
  94. int htsparse(htsmoduleStruct* str, htsmoduleStructExtended* stre);
  95.  
  96. /*
  97.   Check for 301,302.. errors ("moved") and handle them; re-isuue requests, make
  98.   rediretc file, handle filters considerations..
  99.   Parameters: The public module structure, and the private module variables
  100.   Returns 0 upon success
  101. */
  102. int hts_mirror_check_moved(htsmoduleStruct* str, htsmoduleStructExtended* stre);
  103.  
  104. /*
  105.   Get the next file on the queue, waiting for it, handling other files in background..
  106.   Parameters: The public module structure, and the private module variables
  107.   Returns 0 upon success
  108. */
  109. int hts_mirror_wait_for_next_file(htsmoduleStruct* str, htsmoduleStructExtended* stre);
  110.  
  111. /*
  112.   Wair for (adr, fil, save) to be started, that is, 
  113.   to be ready for naming, having its header MIME type
  114.   If the final URL is to be forbidden, sets 'forbidden_url' to the corresponding value
  115. */
  116. int hts_wait_delayed(htsmoduleStruct* str, 
  117.                      char* adr, char* fil, char* save, 
  118.                      char* former_adr, char* former_fil, 
  119.                      int* forbidden_url);
  120.  
  121.  
  122. /* Context state */
  123.  
  124. #define ENGINE_LOAD_CONTEXT_BASE() \
  125.   lien_url** liens = (lien_url**) str->liens; \
  126.   httrackp* opt = (httrackp*) str->opt; \
  127.   struct_back* sback = (struct_back*) str->sback; \
  128.   lien_back* const back = sback->lnk; \
  129.   const int back_max = sback->count; \
  130.   cache_back* cache = (cache_back*) str->cache; \
  131.   hash_struct* hashptr = (hash_struct*) str->hashptr; \
  132.   int numero_passe = str->numero_passe; \
  133.   int add_tab_alloc = str->add_tab_alloc; \
  134.   /* */ \
  135.   int lien_tot = * ( (int*) (str->lien_tot_) ); \
  136.   int ptr = * ( (int*) (str->ptr_) ); \
  137.   int lien_size = * ( (int*) (str->lien_size_) ); \
  138.   char* lien_buffer = * ( (char**) (str->lien_buffer_) )
  139.  
  140. #define ENGINE_SAVE_CONTEXT_BASE() \
  141.   /* Apply changes */ \
  142.   * ( (int*) (str->lien_tot_) ) = lien_tot; \
  143.   * ( (int*) (str->ptr_) ) = ptr; \
  144.   * ( (int*) (str->lien_size_) ) = lien_size; \
  145.   * ( (char**) (str->lien_buffer_) ) = lien_buffer
  146.  
  147. #define WAIT_FOR_AVAILABLE_SOCKET() do { \
  148.   int prev = _hts_in_html_parsing; \
  149.   while(back_pluggable_sockets_strict(sback, opt) <= 0) { \
  150.     _hts_in_html_parsing = 6; \
  151.     /* Wait .. */ \
  152.     back_wait(sback,opt,cache,0); \
  153.     /* Transfer rate */ \
  154.     engine_stats(); \
  155.     /* Refresh various stats */ \
  156.     HTS_STAT.stat_nsocket=back_nsoc(sback); \
  157.     HTS_STAT.stat_errors=fspc(NULL,"error"); \
  158.     HTS_STAT.stat_warnings=fspc(NULL,"warning"); \
  159.     HTS_STAT.stat_infos=fspc(NULL,"info"); \
  160.     HTS_STAT.nbk=backlinks_done(sback,liens,lien_tot,ptr); \
  161.     HTS_STAT.nb=back_transfered(HTS_STAT.stat_bytes,sback); \
  162.     /* Check */ \
  163.     if (!hts_htmlcheck_loop(sback->lnk, sback->count, -1,ptr,lien_tot,(int) (time_local()-HTS_STAT.stat_timestart),&HTS_STAT)) { \
  164.       return -1; \
  165.     } \
  166.   } \
  167.   _hts_in_html_parsing = prev; \
  168. } while(0)
  169.  
  170. #endif
  171.